/*
* @author Cole Gehlen
*/
package com.apps.test;
import static org.junit.Assert.*;
import org.junit.Test;
import com.apps.services.UBCWayfindingService;
import com.apps.services.factory.*;
import com.apps.ubc.cc.model.BuildingModel;
public class UBCWayfindingServiceTest {
@Test
public void test() {
UBCWayfindingService uws = UBCWayfindingServiceFactory.getUBCWayfindingService();
BuildingModel bmod = uws.search("DMP");
assertTrue(bmod.getAddress().equals("6245 Agronomy Road"));
}
}